home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1998 November / Freeware November 1998.img / dist / fw_emacs.idb / usr / freeware / info / emacs-7.z / emacs-7 (.txt)
GNU Info File  |  1998-10-27  |  49KB  |  834 lines

  1. This is Info file ../info/emacs, produced by Makeinfo-1.63 from the
  2. input file emacs.texi.
  3. File: emacs,  Node: Backup,  Next: Interlocking,  Up: Saving
  4. Backup Files
  5. ------------
  6.    On most operating systems, rewriting a file automatically destroys
  7. all record of what the file used to contain.  Thus, saving a file from
  8. Emacs throws away the old contents of the file--or it would, except that
  9. Emacs carefully copies the old contents to another file, called the
  10. "backup" file, before actually saving.  (This assumes that the variable
  11. `make-backup-files' is non-`nil'.  Backup files are not written if this
  12. variable is `nil'.)  Emacs does not normally make backup files for
  13. files in `/tmp'.
  14.    At your option, Emacs can keep either a single backup file or a
  15. series of numbered backup files for each file that you edit.
  16.    Emacs makes a backup for a file only the first time the file is saved
  17. from one buffer.  No matter how many times you save a file, its backup
  18. file continues to contain the contents from before the file was visited.
  19. Normally this means that the backup file contains the contents from
  20. before the current editing session; however, if you kill the buffer and
  21. then visit the file again, a new backup file will be made by the next
  22. save.
  23. * Menu:
  24. * Names: Backup Names.        How backup files are named;
  25.                   choosing single or numbered backup files.
  26. * Deletion: Backup Deletion.    Emacs deletes excess numbered backups.
  27. * Copying: Backup Copying.    Backups can be made by copying or renaming.
  28. File: emacs,  Node: Backup Names,  Next: Backup Deletion,  Up: Backup
  29. Single or Numbered Backups
  30. ..........................
  31.    If you choose to have a single backup file (this is the default),
  32. the backup file's name is constructed by appending `~' to the file name
  33. being edited; thus, the backup file for `eval.c' would be `eval.c~'.
  34.    If you choose to have a series of numbered backup files, backup file
  35. names are made by appending `.~', the number, and another `~' to the
  36. original file name.  Thus, the backup files of `eval.c' would be called
  37. `eval.c.~1~', `eval.c.~2~', and so on, through names like
  38. `eval.c.~259~' and beyond.
  39.    If protection stops you from writing backup files under the usual
  40. names, the backup file is written as `%backup%~' in your home directory.
  41. Only one such file can exist, so only the most recently made such
  42. backup is available.
  43.    The choice of single backup or numbered backups is controlled by the
  44. variable `version-control'.  Its possible values are
  45.      Make numbered backups.
  46. `nil'
  47.      Make numbered backups for files that have numbered backups already.
  48.      Otherwise, make single backups.
  49. `never'
  50.      Do not in any case make numbered backups; always make single
  51.      backups.
  52. You can set `version-control' locally in an individual buffer to
  53. control the making of backups for that buffer's file.  For example,
  54. Rmail mode locally sets `version-control' to `never' to make sure that
  55. there is only one backup for an Rmail file.  *Note Locals::.
  56.    If you set the environment variable `VERSION_CONTROL', to tell
  57. various GNU utilities what to do with backup files, Emacs also obeys the
  58. environment variable by setting the Lisp variable `version-control'
  59. accordingly at startup.  If the environment variable's value is `t' or
  60. `numbered', then `version-control' becomes `t'; if the value is `nil'
  61. or `existing', then `version-control' becomes `nil'; if it is `never'
  62. or `simple', then `version-control' becomes `never'.
  63.    For files under version control (*note Version Control::.), the
  64. variable `vc-make-backup-files' determines whether to make backup
  65. files.  By default, it is `nil', since backup files are redundant when
  66. you store all the previous versions in a version control system.  *Note
  67. Editing with VC::.
  68. File: emacs,  Node: Backup Deletion,  Next: Backup Copying,  Prev: Backup Names,  Up: Backup
  69. Automatic Deletion of Backups
  70. .............................
  71.    To prevent unlimited consumption of disk space, Emacs can delete
  72. numbered backup versions automatically.  Generally Emacs keeps the
  73. first few backups and the latest few backups, deleting any in between.
  74. This happens every time a new backup is made.
  75.    The two variables `kept-old-versions' and `kept-new-versions'
  76. control this deletion.  Their values are, respectively the number of
  77. oldest (lowest-numbered) backups to keep and the number of newest
  78. (highest-numbered) ones to keep, each time a new backup is made.
  79. Recall that these values are used just after a new backup version is
  80. made; that newly made backup is included in the count in
  81. `kept-new-versions'.  By default, both variables are 2.
  82.    If `delete-old-versions' is non-`nil', the excess middle versions
  83. are deleted without a murmur.  If it is `nil', the default, then you
  84. are asked whether the excess middle versions should really be deleted.
  85.    Dired's `.' (Period) command can also be used to delete old versions.
  86. *Note Dired Deletion::.
  87. File: emacs,  Node: Backup Copying,  Prev: Backup Deletion,  Up: Backup
  88. Copying vs. Renaming
  89. ....................
  90.    Backup files can be made by copying the old file or by renaming it.
  91. This makes a difference when the old file has multiple names.  If the
  92. old file is renamed into the backup file, then the alternate names
  93. become names for the backup file.  If the old file is copied instead,
  94. then the alternate names remain names for the file that you are
  95. editing, and the contents accessed by those names will be the new
  96. contents.
  97.    The method of making a backup file may also affect the file's owner
  98. and group.  If copying is used, these do not change.  If renaming is
  99. used, you become the file's owner, and the file's group becomes the
  100. default (different operating systems have different defaults for the
  101. group).
  102.    Having the owner change is usually a good idea, because then the
  103. owner always shows who last edited the file.  Also, the owners of the
  104. backups show who produced those versions.  Occasionally there is a file
  105. whose owner should not change; it is a good idea for such files to
  106. contain local variable lists to set `backup-by-copying-when-mismatch'
  107. locally (*note File Variables::.).
  108.    The choice of renaming or copying is controlled by three variables.
  109. Renaming is the default choice.  If the variable `backup-by-copying' is
  110. non-`nil', copying is used.  Otherwise, if the variable
  111. `backup-by-copying-when-linked' is non-`nil', then copying is used for
  112. files that have multiple names, but renaming may still used when the
  113. file being edited has only one name.  If the variable
  114. `backup-by-copying-when-mismatch' is non-`nil', then copying is used if
  115. renaming would cause the file's owner or group to change.
  116. File: emacs,  Node: Interlocking,  Prev: Backup,  Up: Saving
  117. Protection against Simultaneous Editing
  118. ---------------------------------------
  119.    Simultaneous editing occurs when two users visit the same file, both
  120. make changes, and then both save them.  If nobody were informed that
  121. this was happening, whichever user saved first would later find that his
  122. changes were lost.  On some systems, Emacs notices immediately when the
  123. second user starts to change the file, and issues an immediate warning.
  124.    For the sake of systems where that is not possible, and in case
  125. someone else proceeds to change the file despite the warning, Emacs also
  126. checks when the file is saved, and issues a second warning if you are
  127. about to overwrite a file containing another user's changes.  You can
  128. prevent loss of the other user's work by taking the proper corrective
  129. action at that time.
  130.    When you make the first modification in an Emacs buffer that is
  131. visiting a file, Emacs records that  the file is "locked" by you.  (It
  132. does this by writing another file in a directory reserved for this
  133. purpose.)  The lock is removed when you save the changes.  The idea is
  134. that the file is locked whenever an Emacs buffer visiting it has
  135. unsaved changes.
  136.    If you begin to modify the buffer while the visited file is locked by
  137. someone else, this constitutes a "collision".  When Emacs detects a
  138. collision, it asks you what to do, by calling the Lisp function
  139. `ask-user-about-lock'.  You can redefine this function for the sake of
  140. customization.  The standard definition of this function asks you a
  141. question and accepts three possible answers:
  142.      Steal the lock.  Whoever was already changing the file loses the
  143.      lock, and you gain the lock.
  144.      Proceed.  Go ahead and edit the file despite its being locked by
  145.      someone else.
  146.      Quit.  This causes an error (`file-locked') and the modification
  147.      you were trying to make in the buffer does not actually take place.
  148.    Note that locking works on the basis of a file name; if a file has
  149. multiple names, Emacs does not realize that the two names are the same
  150. file and cannot prevent two users from editing it simultaneously under
  151. different names.  However, basing locking on names means that Emacs can
  152. interlock the editing of new files that will not really exist until
  153. they are saved.
  154.    Some systems are not configured to allow Emacs to make locks.  On
  155. these systems, Emacs cannot detect trouble in advance, but it still can
  156. detect the collision when you try to save a file and overwrite someone
  157. else's changes.
  158.    Every time Emacs saves a buffer, it first checks the
  159. last-modification date of the existing file on disk to verify that it
  160. has not changed since the file was last visited or saved.  If the date
  161. does not match, it implies that changes were made in the file in some
  162. other way, and these changes are about to be lost if Emacs actually
  163. does save.  To prevent this, Emacs prints a warning message and asks
  164. for confirmation before saving.  Occasionally you will know why the
  165. file was changed and know that it does not matter; then you can answer
  166. `yes' and proceed.  Otherwise, you should cancel the save with `C-g'
  167. and investigate the situation.
  168.    The first thing you should do when notified that simultaneous editing
  169. has already taken place is to list the directory with `C-u C-x C-d'
  170. (*note Directories::.).  This shows the file's current author.  You
  171. should attempt to contact him to warn him not to continue editing.
  172. Often the next step is to save the contents of your Emacs buffer under a
  173. different name, and use `diff' to compare the two files.
  174.    Simultaneous editing checks are also made when you visit with `C-x
  175. C-f' a file that is already visited and when you start to modify a
  176. file.  This is not strictly necessary, but it can cause you to find out
  177. about the collision earlier, when perhaps correction takes less work.
  178. File: emacs,  Node: Reverting,  Next: Auto Save,  Prev: Saving,  Up: Files
  179. Reverting a Buffer
  180. ==================
  181.    If you have made extensive changes to a file and then change your
  182. mind about them, you can get rid of them by reading in the previous
  183. version of the file.  To do this, use `M-x revert-buffer', which
  184. operates on the current buffer.  Since reverting a buffer
  185. unintentionally could lose a lot of work, you must confirm this command
  186. with `yes'.
  187.    `revert-buffer' keeps point at the same distance (measured in
  188. characters) from the beginning of the file.  If the file was edited only
  189. slightly, you will be at approximately the same piece of text after
  190. reverting as before.  If you have made drastic changes, the same value
  191. of point in the old file may address a totally different piece of text.
  192.    Reverting marks the buffer as "not modified" until another change is
  193. made.
  194.    Some kinds of buffers whose contents reflect data bases other than
  195. files, such as Dired buffers, can also be reverted.  For them,
  196. reverting means recalculating their contents from the appropriate data
  197. base.  Buffers created randomly with `C-x b' cannot be reverted;
  198. `revert-buffer' reports an error when asked to do so.
  199. File: emacs,  Node: Auto Save,  Next: File Aliases,  Prev: Reverting,  Up: Files
  200. Auto-Saving: Protection Against Disasters
  201. =========================================
  202.    Emacs saves all the visited files from time to time (based on
  203. counting your keystrokes) without being asked.  This is called
  204. "auto-saving".  It prevents you from losing more than a limited amount
  205. of work if the system crashes.
  206.    When Emacs determines that it is time for auto-saving, each buffer is
  207. considered, and is auto-saved if auto-saving is turned on for it and it
  208. has been changed since the last time it was auto-saved.  The message
  209. `Auto-saving...' is displayed in the echo area during auto-saving, if
  210. any files are actually auto-saved.  Errors occurring during auto-saving
  211. are caught so that they do not interfere with the execution of commands
  212. you have been typing.
  213. * Menu:
  214. * Files: Auto Save Files.       The file where auto-saved changes are
  215.                                   actually made until you save the file.
  216. * Control: Auto Save Control.   Controlling when and how often to auto-save.
  217. * Recover::                Recovering text from auto-save files.
  218. File: emacs,  Node: Auto Save Files,  Next: Auto Save Control,  Up: Auto Save
  219. Auto-Save Files
  220. ---------------
  221.    Auto-saving does not normally save in the files that you visited,
  222. because it can be very undesirable to save a program that is in an
  223. inconsistent state when you have made half of a planned change.
  224. Instead, auto-saving is done in a different file called the "auto-save
  225. file", and the visited file is changed only when you request saving
  226. explicitly (such as with `C-x C-s').
  227.    Normally, the auto-save file name is made by appending `#' to the
  228. front and rear of the visited file name.  Thus, a buffer visiting file
  229. `foo.c' is auto-saved in a file `#foo.c#'.  Most buffers that are not
  230. visiting files are auto-saved only if you request it explicitly; when
  231. they are auto-saved, the auto-save file name is made by appending `#%'
  232. to the front and `#' to the rear of buffer name.  For example, the
  233. `*mail*' buffer in which you compose messages to be sent is auto-saved
  234. in a file named `#%*mail*#'.  Auto-save file names are made this way
  235. unless you reprogram parts of Emacs to do something different (the
  236. functions `make-auto-save-file-name' and `auto-save-file-name-p').  The
  237. file name to be used for auto-saving in a buffer is calculated when
  238. auto-saving is turned on in that buffer.
  239.    When you delete a substantial part of the text in a large buffer,
  240. auto save turns off temporarily in that buffer.  This is because if you
  241. deleted the text unintentionally, you might find the auto-save file more
  242. useful if it contains the deleted text.  To reenable auto-saving after
  243. this happens, save the buffer with `C-x C-s', or use `C-u 1 M-x
  244. auto-save'.
  245.    If you want auto-saving to be done in the visited file, set the
  246. variable `auto-save-visited-file-name' to be non-`nil'.  In this mode,
  247. there is really no difference between auto-saving and explicit saving.
  248.    A buffer's auto-save file is deleted when you save the buffer in its
  249. visited file.  To inhibit this, set the variable
  250. `delete-auto-save-files' to `nil'.  Changing the visited file name with
  251. `C-x C-w' or `set-visited-file-name' renames any auto-save file to go
  252. with the new visited name.
  253. File: emacs,  Node: Auto Save Control,  Next: Recover,  Prev: Auto Save Files,  Up: Auto Save
  254. Controlling Auto-Saving
  255. -----------------------
  256.    Each time you visit a file, auto-saving is turned on for that file's
  257. buffer if the variable `auto-save-default' is non-`nil' (but not in
  258. batch mode; *note Entering Emacs::.).  The default for this variable is
  259. `t', so auto-saving is the usual practice for file-visiting buffers.
  260. Auto-saving can be turned on or off for any existing buffer with the
  261. command `M-x auto-save-mode'.  Like other minor mode commands, `M-x
  262. auto-save-mode' turns auto-saving on with a positive argument, off with
  263. a zero or negative argument; with no argument, it toggles.
  264.    Emacs does auto-saving periodically based on counting how many
  265. characters you have typed since the last time auto-saving was done.
  266. The variable `auto-save-interval' specifies how many characters there
  267. are between auto-saves.  By default, it is 300.
  268.    Auto-saving also takes place when you stop typing for a while.  The
  269. variable `auto-save-timeout' says how many seconds Emacs should wait
  270. before it does an auto save (and perhaps also a garbage collection).
  271. (The actual time period is longer if the current buffer is long; this
  272. is a heuristic which aims to keep out of your way when you are editing
  273. long buffers in which auto-save takes an appreciable amount of time.)
  274. Auto-saving during idle periods accomplishes two things: first, it
  275. makes sure all your work is saved if you go away from the terminal for
  276. a while; second, it may avoid some auto-saving while you are actually
  277. typing.
  278.    Emacs also does auto-saving whenever it gets a fatal error.  This
  279. includes killing the Emacs job with a shell command such as `kill
  280. %emacs', or disconnecting a phone line or network connection.
  281.    You can request an auto-save explicitly with the command `M-x
  282. do-auto-save'.
  283. File: emacs,  Node: Recover,  Prev: Auto Save Control,  Up: Auto Save
  284. Recovering Data from Auto-Saves
  285. -------------------------------
  286.    You can use the contents of an auto-save file to recover from a loss
  287. of data with the command `M-x recover-file RET FILE RET'.  This visits
  288. FILE and then (after your confirmation) restores the contents from from
  289. its auto-save file `#FILE#'.  You can then save with `C-x C-s' to put
  290. the recovered text into FILE itself.  For example, to recover file
  291. `foo.c' from its auto-save file `#foo.c#', do:
  292.      M-x recover-file RET foo.c RET
  293.      yes RET
  294.      C-x C-s
  295.    Before asking for confirmation, `M-x recover-file' displays a
  296. directory listing describing the specified file and the auto-save file,
  297. so you can compare their sizes and dates.  If the auto-save file is
  298. older, `M-x recover-file' does not offer to read it.
  299.    If Emacs or the computer crashes, you can recover all the files you
  300. were editing from their auto save files with the command `M-x
  301. recover-session'.  This first shows you a list of recorded interrupted
  302. sessions.  Move point to the one you choose, and type `C-c C-c'.
  303.    Then `recover-session' asks about each of the files that were being
  304. edited during that session, asking whether to recover that file.  If
  305. you answer `y', it calls `recover-file', which works in its normal
  306. fashion.  It shows the dates of the original file and its auto-save
  307. file, and asks once again whether to recover that file.
  308.    When `recover-session' is done, the files you've chosen to recover
  309. are present in Emacs buffers.  You should then save them.  Only
  310. this--saving them--updates the files themselves.
  311.    Interrupted sessions are recorded for later recovery in files named
  312. `~/.saves-PID-HOSTNAME'.  The `~/.saves' portion of these names comes
  313. from the value of `auto-save-list-file-prefix'.  You can arrange to
  314. record sessions in a different place by setting that variable in your
  315. `.emacs' file, but you'll have to redefine `recover-session' as well to
  316. make it look in the new place.  If you set `auto-save-list-file-prefix'
  317. to `nil' in your `.emacs' file, sessions are not recorded for recovery.
  318. File: emacs,  Node: File Aliases,  Next: Version Control,  Prev: Auto Save,  Up: Files
  319. File Name Aliases
  320. =================
  321.    Symbolic links and hard links both make it possible for several file
  322. names to refer to the same file.  Hard links are alternate names that
  323. refer directly to the file; all the names are equally valid, and no one
  324. of them is preferred.  By contrast, a symbolic link is a kind of defined
  325. alias: when `foo' is a symbolic link to `bar', you can use either name
  326. to refer to the file, but `bar' is the real name, while `foo' is just
  327. an alias.  More complex cases occur when symbolic links point to
  328. directories.
  329.    If you visit two names for the same file, normally Emacs makes two
  330. different buffers, but it warns you about the situation.
  331.    If you wish to avoid visiting the same file in two buffers under
  332. different names, set the variable `find-file-existing-other-name' to a
  333. non-`nil' value.  Then `find-file' uses the existing buffer visiting
  334. the file, no matter which of the file's names you specify.
  335.    If the variable `find-file-visit-truename' is non-`nil', then the
  336. file name recorded for a buffer is the file's "truename" (made by
  337. replacing all symbolic links with their target names), rather than the
  338. name you specify.  Setting `find-file-visit-truename' also implies the
  339. effect of `find-file-existing-other-name'.
  340. File: emacs,  Node: Version Control,  Next: Directories,  Prev: File Aliases,  Up: Files
  341. Version Control
  342. ===============
  343.    "Version control systems" are packages that can record multiple
  344. versions of a source file, usually storing the unchanged parts of the
  345. file just once.  Version control systems also record history information
  346. such as the creation time of each version, who created it, and a
  347. description of what was changed in that version.
  348.    The Emacs version control commands work with three version control
  349. systems--RCS, CVS and SCCS.  The GNU project recommends RCS and CVS,
  350. which are free software and available from the Free Software Foundation.
  351. * Menu:
  352. * Version Systems::             Supported version control back end systems.
  353. * VC Concepts::                 Basic version control information;
  354.                                   checking files in and out.
  355. * Editing with VC::             Commands for editing a file maintained
  356.                                   with version control.
  357. * Log Entries::                 Logging your changes.
  358. * Change Logs and VC::          Generating a change log file from log entries.
  359. * Old Versions::                Examining and comparing old versions.
  360. * Branches::                    Selecting a branch to put your changes in,
  361.                                   and creating a new branch.
  362. * Status in VC::                Commands to view the VC status of files and
  363.                                   look at log entries.
  364. * Renaming and VC::             A command to rename both the source and
  365.                                   master file correctly.
  366. * Snapshots::                   How to make and use snapshots, a set of
  367.                                   file versions that can be treated as a unit.
  368. * Version Headers::             Inserting version control headers into
  369.                                   working files.
  370. * Customizing VC::              Variables to change VC's behavior.
  371. File: emacs,  Node: Version Systems,  Next: VC Concepts,  Up: Version Control
  372. Supported Version Control Systems
  373. ---------------------------------
  374.    VC currently works with three different version control systems or
  375. "back ends": RCS, CVS, and SCCS.
  376.    RCS is a free version control system that is available from the Free
  377. Software Foundation.  It is perhaps the most mature of the supported
  378. back ends, and the VC commands are conceptually closest to RCS.  Almost
  379. everything you can do with RCS can be done through VC.
  380.    CVS is built on top of RCS, and extends the features of RCS, allowing
  381. for more sophisticated release management, and concurrent multi-user
  382. development.  VC supports basic editing operations under CVS, but for
  383. some less common tasks you still need to call CVS from the command line.
  384. Note also that before using CVS you must set up a repository, which is a
  385. subject too complex to treat here.  *Note CVS and VC::.
  386.    SCCS is a proprietary but widely used version control system.  In
  387. terms of capabilities, it is the weakest of the the three that VC
  388. supports.  VC compensates for certain features missing in SCCS
  389. (snapshots, for example) by implementing them itself, but some other VC
  390. features, such as multiple branches, are not available with SCCS.  You
  391. should use SCCS only if for some reason you cannot use RCS.
  392. File: emacs,  Node: VC Concepts,  Next: Editing with VC,  Prev: Version Systems,  Up: Version Control
  393. Concepts of Version Control
  394. ---------------------------
  395.    When a file is under version control, we also say that it is
  396. "registered" in the version control system.  Each registered file has a
  397. corresponding "master file" which represents the file's present state
  398. plus its change history, so that you can reconstruct from it either the
  399. current version or any specified earlier version.  Usually the master
  400. file also records a "log entry" for each version describing what was
  401. changed in that version.
  402.    The file that is maintained under version control is sometimes called
  403. the "work file" corresponding to its master file.
  404.    To examine a file, you "check it out".  This extracts a version of
  405. the source file (typically, the most recent) from the master file.  If
  406. you want to edit the file, you must check it out "locked".  Only one
  407. user can do this at a time for any given source file.  (This kind of
  408. locking is completely unrelated to the locking that Emacs uses to detect
  409. simultaneous editing of a file.)
  410.    When you are done with your editing, you must "check in" the new
  411. version.  This records the new version in the master file, and unlocks
  412. the source file so that other people can lock it and thus modify it.
  413.    Checkin and checkout are the basic operations of version control.
  414. You can do both of them with a single Emacs command: `C-x C-q'
  415. (`vc-toggle-read-only').
  416.    There are variants of this basic pattern, though.  CVS, for example,
  417. has no such thing as locking, and therefore you can normally edit files
  418. right away, without having to check them out first.  *Note CVS and VC::.
  419. With RCS, you can optionally select "non-strict locking" for a
  420. particular source file; then you can edit the file in Emacs without
  421. explicitly locking it.
  422.    A "snapshot" is a coherent collection of versions of the various
  423. files that make up a program.  *Note Snapshots::.
  424. File: emacs,  Node: Editing with VC,  Next: Log Entries,  Prev: VC Concepts,  Up: Version Control
  425. Editing with Version Control
  426. ----------------------------
  427.    These are the commands for editing a file maintained with version
  428. control:
  429. `C-x C-q'
  430. `C-x v v'
  431.      Check the visited file in or out.
  432. `C-x v u'
  433.      Revert the buffer and the file to the last checked in version.
  434. `C-x v c'
  435.      Remove the last-entered change from the master for the visited
  436.      file.  This undoes your last check-in.
  437. `C-x v i'
  438.      Register the visited file for version control.
  439. (`C-x v' is the prefix key for version control commands; all of these
  440. commands except for `C-x C-q' start with `C-x v'.)
  441. * Menu:
  442. * Check-Out::                   Checking out a file so you can edit it.
  443. * Check-In::                    After you edit, you check in your changes
  444.                                   to make a new version.
  445. * Version Control Undo::        Canceling changes before or after checkin.
  446. * Registering::                 How to start using version control
  447.                                   for a file.
  448. * VC Mode Line::                Mode line indicates version and lock status.
  449. * CVS and VC::                  Checkout and checkin work differently in CVS.
  450. File: emacs,  Node: Check-Out,  Next: Check-In,  Up: Editing with VC
  451. Check-Out
  452. .........
  453.    When you want to modify a file maintained with version control, type
  454. `C-x C-q' (`vc-toggle-read-only').  This "checks out" the file, and
  455. tells RCS or SCCS to lock the file.  This means making the file
  456. writable for you (but not for anyone else).
  457.    If you specify a prefix argument (`C-u C-x C-q') for checkout, Emacs
  458. asks you for a version number, and checks out that version *unlocked*.
  459. This lets you move to old versions, or existing branches of the file
  460. (*note Branches::.).  You can then start editing the selected version
  461. by typing `C-x C-q' again.  (If you edit an old version of a file this
  462. way, checking it in again creates a new branch.)
  463.    Under CVS, you normally don't need to check out files explicitly.
  464. CVS does not have locking; multiple users can edit their copies of a
  465. file whenever they want.  (If two users make conflicting changes, they
  466. need to reconcile their changes when checking them in.)  We therefore
  467. say that an "implicit" check-out happens when you make the first change
  468. in the file.
  469.    CVS has an alternative mode in which explicit check-out is required.
  470. And RCS has an alternative mode called "non-strict locking" in which
  471. explicit check-out is not required.  Selecting these modes is done
  472. outside of VC, but once you have selected them, VC obeys them.  With
  473. RCS, you can select non-strict locking for a particular file using the
  474. `rcs -U' command.  *Note CVS and VC::, for an explanation of how to do
  475. this with CVS.
  476. File: emacs,  Node: Check-In,  Next: Version Control Undo,  Prev: Check-Out,  Up: Editing with VC
  477. Check-In
  478. ........
  479.    When you are finished editing the file, type `C-x C-q' again.  When
  480. used on a file that is checked out, this command checks the file in.
  481. But check-in does not start immediately; first, you must enter the "log
  482. entry"--a description of the changes in the new version.  `C-x C-q'
  483. pops up a buffer for you to enter this in.  When you are finished
  484. typing in the log entry, type `C-c C-c' to terminate it; this is when
  485. actual check-in takes place.  *Note Log Entries::.
  486.    With RCS and SCCS, a checked-out file is also "locked", which means
  487. it is writable for you, but not for anyone else.  As long as you own
  488. the lock on the file, nobody else can modify it, and nobody can check
  489. in any changes to that particular version.  Checking in your changes
  490. unlocks the file, so that other users can lock it and modify it.
  491.    CVS, on the contrary, doesn't have a concept of locking.  The working
  492. files are always modifiable, allowing concurrent development, with
  493. possible conflicts being resolved at check-in time.  *Note CVS and VC::.
  494.    To specify the version number for the new version, type `C-u C-x
  495. C-q' to check in a file.  Then Emacs asks you for the new version number
  496. in the minibuffer.  This can be used to create a new "branch" of the
  497. file (*note Branches::.), or to increment the file's major version
  498. number.
  499.    It is not impossible to lock a file that someone else has locked.  If
  500. you try to check out a file that is locked, `C-x C-q' asks you whether
  501. you want to "steal the lock."  If you say yes, the file becomes locked
  502. by you, but a message is sent to the person who had formerly locked the
  503. file, to inform him of what has happened.  The mode line indicates that
  504. a file is locked by someone else by displaying the login name of that
  505. person, before the version number.
  506. File: emacs,  Node: Registering,  Next: VC Mode Line,  Prev: Version Control Undo,  Up: Editing with VC
  507. Registering a File for Version Control
  508. ......................................
  509. `C-x v i'
  510.      Register the visited file for version control.
  511.    You can put any file under version control by simply visiting it, and
  512. then typing `C-x v i' (`vc-register'). After `C-x v i', the file is
  513. unlocked and read-only.  Type `C-x C-q' if you wish to start editing it.
  514.    When you register the file, Emacs must choose which version control
  515. system to use for it.  You can specify your choice explicitly by setting
  516. `vc-default-back-end' to `RCS', `CVS' or `SCCS'.  Otherwise, if there
  517. is a subdirectory named `RCS', `SCCS', or `CVS', Emacs uses the
  518. corresponding version control system.  In the absence of any
  519. specification, the default choice is RCS if RCS is installed, otherwise
  520. SCCS.
  521.    After registering a file with CVS, you must subsequently commit the
  522. initial version by typing `C-x C-q'.  *Note CVS and VC::.
  523.    The initial version number for a newly registered file is 1.1, by
  524. default.  To specify a different number, give `C-x v i' a numeric
  525. argument; then it reads the initial version number using the minibuffer.
  526.    If `vc-initial-comment' is non-`nil', `C-x v i' reads an initial
  527. comment (much like a log entry) to describe the purpose of this source
  528. file.
  529. File: emacs,  Node: Version Control Undo,  Next: Registering,  Prev: Check-In,  Up: Editing with VC
  530. Undoing Version Control Actions
  531. ...............................
  532. `C-x v u'
  533.      Revert the buffer and the file to the last checked in version.
  534. `C-x v c'
  535.      Remove the last-entered change from the master for the visited
  536.      file.  This undoes your last checkin.
  537.    If you want to discard your current set of changes and revert to the
  538. last version checked in, use `C-x v u' (`vc-revert-buffer').  This
  539. cancels your last check-out, leaving the file unlocked.  If you want to
  540. make a different set of changes, you must first check the file out
  541. again.  `C-x v u' requires confirmation, unless it sees that you
  542. haven't made any changes since the last checked-in version.
  543.    `C-x v u' is also the command to use to unlock a file if you lock it
  544. and then decide not to change it.
  545.    You can cancel a change after checking it in, with `C-x v c'
  546. (`vc-cancel-version').  This command discards all record of the most
  547. recent checked in version.  `C-x v c' also offers to revert your work
  548. file and buffer to the previous version (the one that precedes the
  549. version that is deleted).  If you say `no', then VC keeps your changes
  550. in the buffer and locks the file.
  551.    The no-revert option is useful when you have checked in a change and
  552. then discover a trivial error in it; you can cancel the erroneous
  553. check-in, fix the error, and check the file in again.
  554.    When `C-x v c' does not revert the buffer, it unexpands all version
  555. control headers in the buffer instead (*note Version Headers::.).  This
  556. is because the buffer no longer corresponds to any existing version.
  557. If you check it in again, the checkin process will expand the headers
  558. properly for the new version number.
  559.    However, it is impossible to unexpand the RCS `$Log$' header
  560. automatically.  If you use that header feature, you have to unexpand it
  561. by hand--by deleting the entry for the version that you just canceled.
  562.    Be careful when invoking `C-x v c', as it is easy to throw away a
  563. lot of work with it.  To help you be careful, this command always
  564. requires confirmation with `yes'.  Note also that this command is
  565. disabled under CVS, because canceling versions is very dangerous and
  566. discouraged with this back end.
  567. File: emacs,  Node: VC Mode Line,  Next: CVS and VC,  Prev: Registering,  Up: Editing with VC
  568. The VC Mode Line
  569. ................
  570.    When you visit a file that is under version control, the mode line
  571. indicates the current status of the file: the name of the version
  572. control back end system, the locking state, and the version.
  573.    The locking state is displayed as a single character, which can be
  574. either `-' or `:'.  `-' means the file is not locked or not modified by
  575. you.  Once you lock the file, the state indicator changes to `:'.  If
  576. the file is locked by someone else, that user's name appears after the
  577. version number.
  578.    For example, `RCS-1.3' means you are looking at RCS version 1.3,
  579. which is not locked.  `RCS:1.3' means that you have locked the file,
  580. and possibly already changed it.  `RCS:jim:1.3' means that the file is
  581. locked by jim.
  582. File: emacs,  Node: CVS and VC,  Prev: VC Mode Line,  Up: Editing with VC
  583. Using VC with CVS
  584. .................
  585.    In CVS, files are never locked.  Two users can check out the same
  586. file at the same time; each user has a separate copy and can edit it.
  587. Work files are always writable; once you have one, you need not type a
  588. VC command to start editing the file.  You can edit it at any time.
  589.    When using RCS and SCCS, you normally use `C-x C-q' twice for each
  590. change; once before the change, for checkout, and once after, for
  591. checkin.  With CVS, it's different: you normally use `C-x C-q' just
  592. once for each change, to commit the change when it is done.  The work
  593. file remains writable, so you can begin editing again with no special
  594. commands.
  595.    One way to understand this is that VC does an "implicit" check-out
  596. when you save the modified file for the first time.  VC indicates this
  597. on the mode line: the status indicator changes from `-' to `:' as soon
  598. as you save a modified version, telling you that you are not in sync
  599. with the repository anymore (*note VC Mode Line::.).  The file stays
  600. "checked out" until you check it back in, even if you kill the buffer
  601. and visit the file again.
  602.    If, instead, you would like to use explicit check-out with CVS, set
  603. the `CVSREAD' environment variable to some value.  (It does not matter
  604. what value you use.)  CVS then makes your work files read-only by
  605. default, and VC requires you to check them out explicitly with `C-x
  606. C-q'.  When setting `CVSREAD' for the first time, make sure to check
  607. out all your modules anew, so that the file protections are set
  608. correctly.
  609.    VC does not provide a way to check out a working copy of an existing
  610. file in the repository.  You have to use the CVS shell commands to do
  611. that.  Once you have a work file, you can start using VC for that file.
  612.    CVS terminology speaks of "committing" a change rather than checking
  613. it in.  But in practical terms they work the same way: Emacs asks you
  614. to type in a log entry, and you finish it with `C-c C-c'.
  615.    When you try to commit a change in a file, but someone else has
  616. committed another change in the meanwhile, that creates a "conflict".
  617. VC detects this situation and offers to "merge" your changes and those
  618. of the other user, creating a new local version of the file, which you
  619. can then commit to the repository.  This works smoothly if the changes
  620. are in different parts of the file, although it is wise to check the
  621. resulting file for semantic consistency.
  622.    However, if you and the other user changed the same parts of the
  623. file, the conflict cannot be resolved automatically.  In this case, CVS
  624. inserts both variants of the conflicting regions into your working file,
  625. and puts so-called "conflict markers" around them.  They indicate how
  626. the region looks in the respective user's version.  You must resolve
  627. the conflict manually, for example by choosing one of the two variants
  628. and deleting the other one (and the conflict markers).  Then you can
  629. commit the resulting file into the repository.  The example below shows
  630. how a conflict region looks; the file is called `name' and the current
  631. repository version with user B's changes in it is 1.11.
  632.      <<<<<<< name
  633.        USER A'S VERSION
  634.      =======
  635.        USER B'S VERSION
  636.      >>>>>>> 1.11
  637.    You can turn off use of VC for CVS-managed files by setting the
  638. variable `vc-handle-cvs' to `nil'.  If you do this, Emacs treats these
  639. files as if they were not managed, and the VC commands are not
  640. available for them.  You must do all CVS operations manually.
  641. File: emacs,  Node: Log Entries,  Next: Change Logs and VC,  Prev: Editing with VC,  Up: Version Control
  642. Log Entries
  643. -----------
  644.    When you're editing an initial comment or log entry for inclusion in
  645. a master file, finish your entry by typing `C-c C-c'.
  646. `C-c C-c'
  647.      Finish the comment edit normally (`vc-finish-logentry').  This
  648.      finishes check-in.
  649.    To abort check-in, just *don't* type `C-c C-c' in that buffer.  You
  650. can switch buffers and do other editing.  As long as you don't try to
  651. check in another file, the entry you were editing remains in its
  652. buffer, and you can go back to that buffer at any time to complete the
  653. check-in.
  654.    If you change several source files for the same reason, it is often
  655. convenient to specify the same log entry for many of the files.  To do
  656. this, use the history of previous log entries.  The commands `M-n',
  657. `M-p', `M-s' and `M-r' for doing this work just like the minibuffer
  658. history commands (except that these versions are used outside the
  659. minibuffer).
  660.    Each time you check in a file, the log entry buffer is put into VC
  661. Log mode, which involves running two hooks: `text-mode-hook' and
  662. `vc-log-mode-hook'.  *Note Hooks::.
  663. File: emacs,  Node: Change Logs and VC,  Next: Old Versions,  Prev: Log Entries,  Up: Version Control
  664. Change Logs and VC
  665. ------------------
  666.    If you use RCS for a program and also maintain a change log file for
  667. it (*note Change Log::.), you can generate change log entries
  668. automatically from the version control log entries:
  669. `C-x v a'
  670.      Visit the current directory's change log file and create new
  671.      entries for versions checked in since the most recent entry in the
  672.      change log file (`vc-update-change-log').
  673.      This command works with RCS only; it does not work with CVS or
  674.      SCCS.
  675.    For example, suppose the first line of `ChangeLog' is dated 10 April
  676. 1992, and that the only check-in since then was by Nathaniel Bowditch
  677. to `rcs2log' on 8 May 1992 with log text `Ignore log messages that
  678. start with `#'.'.  Then `C-x v a' visits `ChangeLog' and inserts text
  679. like this:
  680.      Fri May  8 21:45:00 1992  Nathaniel Bowditch  <nat@apn.org>
  681.      
  682.              * rcs2log: Ignore log messages that start with `#'.
  683. You can then edit the new change log entry further as you wish.
  684.    Normally, the log entry for file `foo' is displayed as `* foo: TEXT
  685. OF LOG ENTRY'.  The `:' after `foo' is omitted if the text of the log
  686. entry starts with `(FUNCTIONNAME): '.  For example, if the log entry
  687. for `vc.el' is `(vc-do-command): Check call-process status.', then the
  688. text in `ChangeLog' looks like this:
  689.      Wed May  6 10:53:00 1992  Nathaniel Bowditch  <nat@apn.org>
  690.      
  691.              * vc.el (vc-do-command): Check call-process status.
  692.    When `C-x v a' adds several change log entries at once, it groups
  693. related log entries together if they all are checked in by the same
  694. author at nearly the same time.  If the log entries for several such
  695. files all have the same text, it coalesces them into a single entry.
  696. For example, suppose the most recent checkins have the following log
  697. entries:
  698. * For `vc.texinfo': `Fix expansion typos.'
  699. * For `vc.el': `Don't call expand-file-name.'
  700. * For `vc-hooks.el': `Don't call expand-file-name.'
  701. They appear like this in `ChangeLog':
  702.      Wed Apr  1 08:57:59 1992  Nathaniel Bowditch  <nat@apn.org>
  703.      
  704.              * vc.texinfo: Fix expansion typos.
  705.      
  706.              * vc.el, vc-hooks.el: Don't call expand-file-name.
  707.    Normally, `C-x v a' separates log entries by a blank line, but you
  708. can mark several related log entries to be clumped together (without an
  709. intervening blank line) by starting the text of each related log entry
  710. with a label of the form `{CLUMPNAME} '.  The label itself is not
  711. copied to `ChangeLog'.  For example, suppose the log entries are:
  712. * For `vc.texinfo': `{expand} Fix expansion typos.'
  713. * For `vc.el': `{expand} Don't call expand-file-name.'
  714. * For `vc-hooks.el': `{expand} Don't call expand-file-name.'
  715. Then the text in `ChangeLog' looks like this:
  716.      Wed Apr  1 08:57:59 1992  Nathaniel Bowditch  <nat@apn.org>
  717.      
  718.              * vc.texinfo: Fix expansion typos.
  719.              * vc.el, vc-hooks.el: Don't call expand-file-name.
  720.    A log entry whose text begins with `#' is not copied to `ChangeLog'.
  721. For example, if you merely fix some misspellings in comments, you can
  722. log the change with an entry beginning with `#' to avoid putting such
  723. trivia into `ChangeLog'.
  724. File: emacs,  Node: Old Versions,  Next: Branches,  Prev: Change Logs and VC,  Up: Version Control
  725. Examining And Comparing Old Versions
  726. ------------------------------------
  727. `C-u C-x C-q VERSION RET'
  728.      Select version VERSION as the current work file version.
  729. `C-x v ~ VERSION RET'
  730.      Examine version VERSION of the visited file, in a buffer of its
  731.      own.
  732. `C-x v ='
  733.      Compare the current buffer contents with the latest checked-in
  734.      version of the file.
  735. `C-u C-x v = FILE RET OLDVERS RET NEWVERS RET'
  736.      Compare the specified two versions of FILE.
  737.    There are two ways to work with an old version of a file.  You can
  738. make the old version your current work file, for example if you want to
  739. reproduce a former stage of development, or if you want to create a
  740. branch from the old version (*note Branches::.).  To do this, visit the
  741. file and type `C-u C-x C-q VERSION RET'.  (This works only with RCS.)
  742.    If you want only to examine an old version, without changing your
  743. work file, visit the file and then type `C-x v ~ VERSION RET'
  744. (`vc-version-other-window').  This puts the text of version VERSION in
  745. a file named `FILENAME.~VERSION~', and visits it in its own buffer in a
  746. separate window.
  747.    To compare two versions of a file, use the command `C-x v ='
  748. (`vc-diff').  Plain `C-x v =' compares the current buffer contents
  749. (saving them in the file if necessary) with the last checked-in version
  750. of the file.  `C-u C-x v =', with a numeric argument, reads a file name
  751. and two version numbers, then compares those versions of the specified
  752. file.
  753.    If you supply a directory name instead of the name of a work file,
  754. this command compares the two specified versions of all registered files
  755. in that directory and its subdirectories.  You can also specify a
  756. snapshot name (*note Snapshots::.) instead of one or both version
  757. numbers.
  758.    You can specify a checked-in version by its number; an empty input
  759. specifies the current contents of the work file (which may be different
  760. from all the checked-in versions).
  761.    This command works by running the `diff' utility, getting the
  762. options from the variable `diff-switches'.  It displays the output in a
  763. special buffer in another window.  Unlike the `M-x diff' command, `C-x
  764. v =' does not try to locate the changes in the old and new versions.
  765. This is because normally one or both versions do not exist as files
  766. when you compare them; they exist only in the records of the master
  767. file.  *Note Comparing Files::, for more information about `M-x diff'.
  768. File: emacs,  Node: Branches,  Next: Status in VC,  Prev: Old Versions,  Up: Version Control
  769. Multiple Branches of a File
  770. ---------------------------
  771.    One use of version control is to maintain multiple "current"
  772. versions of a file.  For example, you might have different versions of a
  773. program in which you are gradually adding various unfinished new
  774. features.  Each such independent line of development is called a
  775. "branch".  VC allows you to create branches, and switch between
  776. existing branches.  Note, however, that branches are supported only with
  777.    A file's main line of development is usually called the "trunk".
  778. The versions on the trunk are normally numbered 1.1, 1.2, 1.3, etc.  At
  779. any such version, you may start an independent branch.  A branch
  780. starting at version 1.2 would have version number 1.2.1.1.  Consecutive
  781. versions on this branch would have numbers 1.2.1.2, 1.2.1.3, 1.2.1.4,
  782. and so on.  If there is a second branch also starting at version 1.2; it
  783. would consist of versions 1.2.2.1, 1.2.2.2, 1.2.2.3, and so on.
  784.    If you omit the final component of a version number, that is called a
  785. "branch number".  It refers to the highest existing version on that
  786. branch.  The branches in the example above have branch numbers 1.2.1 and
  787. 1.2.2.
  788.    A version which is the last in its branch is called a "head" version.
  789. * Menu:
  790. * Switching Branches::    How to get to another existing branch.
  791. * Creating Branches::     How to start a new branch.
  792. * Multi-User Branching::  Multiple users working at multiple branches
  793.                             in parallel.
  794. File: emacs,  Node: Switching Branches,  Next: Creating Branches,  Up: Branches
  795. Switching between Branches
  796. ..........................
  797.    To switch between branches, type `C-u C-x C-q' and specify the
  798. version number you want to select.  This version is then checked out
  799. *unlocked* (write-protected), so you can examine it before really
  800. checking it out.  Switching branches in this way is allowed only when
  801. the file is not locked.
  802.    You may omit the minor version number, thus giving only the branch
  803. number; this takes you to the highest version on the indicated branch.
  804. If you only type `RET', Emacs goes to the highest version on the trunk.
  805.    After you have switched to any branch (including the main branch),
  806. you stay on it for subsequent VC commands, until you explicitly select
  807. some other branch.
  808. File: emacs,  Node: Creating Branches,  Next: Multi-User Branching,  Prev: Switching Branches,  Up: Branches
  809. Creating New Branches
  810. .....................
  811.    To create a new branch from a head version (one that is the latest in
  812. the branch that contains it), first select that version if necessary,
  813. lock it with `C-x C-q', and make whatever changes you want.  Then, when
  814. you check in the changes, use `C-u C-x C-q'.  This lets you specify the
  815. version number for the new version.  You should specify a suitable
  816. branch number for a branch starting at the current version.  For
  817. example, if the current version is 2.5, the branch number should be
  818. 2.5.1, 2.5.2, and so on, depending on the number of existing branches at
  819. that point.
  820.    To create a new branch at an older version (one that is no longer the
  821. head of a branch), first select that version, then lock it with `C-x
  822. C-q'.  You'll be asked to confirm, when you lock the old version, that
  823. you really mean to create a new branch--if you say no, you'll be offered
  824. a chance to lock the latest version instead.
  825.    Then make your changes and type `C-x C-q' again to check in a new
  826. version.  This automatically creates a new branch starting from the
  827. selected version.  You need not specially request a new branch, because
  828. that's the only way to add a new version at a point that is not the head
  829. of a branch.
  830.    After the branch is created, you "stay" on it.  That means that
  831. subsequent checkouts and checkins create new versions on that branch.
  832. To leave the branch, you must explicitly select a different version with
  833. `C-u C-x C-q' for checkout.
  834.